home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ussbc23.zip / DEMOS / QR10DEMO.DPR < prev    next >
Text File  |  1997-02-17  |  176b  |  13 lines

  1. program qr10demo;
  2.  
  3. uses
  4.   Forms,
  5.   Reportfm in 'REPORTFM.PAS' {fmReport};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TfmReport, fmReport);
  11.   Application.Run;
  12. end.
  13.